'''Created on Aug 27, 2018 @author: TBABAIAN
Demo of built-in types'''
 

 
 
    # numeric types: int, float, complex
print (3,     'has type', type(3))
print (-4.5 , 'has type', type(-4.5))
print (complex(3,4), 'has type', type ( complex(3,4) ))
    # have no range limit
a = 30000000000000000000000000000 + 1
print (a, 'has type',  type(a))
print (1/a, 'has type' ,  type(1/a))

print ('\nStrings ----------------------------------------------------')
 
    # str type
print (type('abc'))
print (type('a'))
print (type("also a string"))

